home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / p_man / cat3 / f90 / allocated.z / allocated
Text File  |  1998-10-30  |  2KB  |  42 lines

  1. ALLOCATED(3I)                                          Last changed: 1-6-98
  2.  
  3.  
  4. NNAAMMEE
  5.      AALLLLOOCCAATTEEDD - Returns the array allocation status
  6.  
  7. SSYYNNOOPPSSIISS
  8.      AALLLLOOCCAATTEEDD (([AARRRRAAYY==]_a_r_r_a_y))
  9.  
  10. IIMMPPLLEEMMEENNTTAATTIIOONN
  11.      UNICOS, UNICOS/mk, and IRIX systems
  12.  
  13. SSTTAANNDDAARRDDSS
  14.      Fortran 90
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      The AALLLLOOCCAATTEEDD intrinsic function indicates whether or not an
  18.      allocatable array is currently allocated.  It accepts the following
  19.      argument:
  20.  
  21.      _a_r_r_a_y     Must be an allocatable array
  22.  
  23.      AALLLLOOCCAATTEEDD is an inquiry function.  The name of this intrinsic cannot
  24.      be passed as an argument.
  25.  
  26. RREETTUURRNN VVAALLUUEESS
  27.      The result type, type parameter, and shape are default logical scalar.
  28.      The result has the value TTRRUUEE if _a_r_r_a_y is currently allocated and has
  29.      the value FFAALLSSEE if _a_r_r_a_y is not currently allocated.
  30.  
  31.      The result is undefined if the allocation status of the array is
  32.      undefined.  See section 6 of the _F_o_r_t_r_a_n _L_a_n_g_u_a_g_e _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l,
  33.      _V_o_l_u_m_e _1, publication SR-3902, for information on the allocation of
  34.      allocatable arrays.
  35.  
  36. SSEEEE AALLSSOO
  37.      _F_o_r_t_r_a_n _L_a_n_g_u_a_g_e _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, _V_o_l_u_m_e _1, publication SR-3902
  38.  
  39.      _I_n_t_r_i_n_s_i_c _P_r_o_c_e_d_u_r_e_s _R_e_f_e_r_e_n_c_e _M_a_n_u_a_l, publication SR-2138, for the
  40.      printed version of this man page.
  41.  
  42.